Merge pull request #506 from andrewcsmith/patch-2
[supercollider.git] / examples / GUI examples / ColorBrowser.scd
blob18c40f4c44291d70b4416279addce74d3316da15
1 // Color Browser
2 // (c) 2007 Tom Hall <scth@ludions.com>.
3 //  This program is free software; you can redistribute it and/or modify
4 //  it under the terms of the GNU General Public License as published by
5 //  the Free Software Foundation; either version 2 of the License, or
6 //  (at your option) any later version.
7 //
8 //  This program is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 //  GNU General Public License for more details.
13 //  You should have received a copy of the GNU General Public License
14 //  along with this program; if not, write to the Free Software
15 //  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
17 // !! Evaluate the X Windows color data (x = [...]) below first !!
19 // Make a GUI with a button for each X Window color
20 // Pressing the buttons selects a colr and posts its name and 8-bit values
21 // Closing the window makes a new window with selected colors (one time only)
24 var colorWindow, sortFn, screenBounds, btnWidth;
25 colorWindow = {arg colors, btnWidth=60, fontSize=9, bounds, inclGrey=false, winOnClose=true;
26         var w, color, colArr, prevCol, colName, btn, txtCol, isGrey, colsCollect = [];  
27         bounds = bounds ? Rect(10, 10, 252, 240);
28         w = Window("Color browser", bounds, scroll: true);
29         w.view.decorator = FlowLayout(w.view.bounds, Point(0,0), Point(0,0));
30         colors.do({ arg colAssoc, i;
31                 color = colAssoc.value;
32                 colArr = color.asArray;
33                 colName = colAssoc.key.asString;
34                 if(colArr != prevCol, { 
35                         if (inclGrey.not, {
36                                 isGrey = colName.containsi("gray") or: {colName.containsi("grey")};
37                         }, {
38                                 isGrey = false; 
39                         });
40                         if (isGrey.not, {
41                                 txtCol = if(colArr.sum < 2.45, {Color.white}, {Color.black});
42                                 btn = Button(w, Rect(0,0, btnWidth, (btnWidth/3).round)); 
43                                 btn.font = Font("Helvetica", fontSize);
44                                 btn.states = [["", txtCol, color],[colName, txtCol, color]];
45                                 btn.action_({ arg butt;
46                                         var name, val256;
47                                         name = colors[i].key;
48                                         val256 = (colors[i].value.asArray * 255).keep(3);
49                                         format("%  %",name , val256).postln;
50                                         colsCollect = colsCollect.add(colors[i]);
51                                 });
52                         });
53                 });
54                 prevCol = colArr;       
55         });
56         // Make a final window with selected colors
57         if (winOnClose, {
58                 w.onClose = {
59                         var winHeight, sortedCols;
60                         if (colsCollect.notEmpty, {
61                                 winHeight =  colsCollect.size.round(2)/2 * 67;
62                                 sortedCols = colsCollect.sort({ arg a, b; (a.value.asArray.sum) > (b.value.asArray.sum)});
63                                 colorWindow.value(sortedCols, 200, 11, Rect(200, 200, 412, winHeight), true, false);
64                                 sortedCols.asCompileString.postln;
65                         });
66                 };
67         });
68         w.front;
71 // sort colors by intensity
72 sortFn = { arg a, b; (a.value.asArray.sum) > (b.value.asArray.sum)};
74 // calculate window and button sizes relatve to screen resolution
75 screenBounds = Window.screenBounds.extent.asArray;
76 // 508 colors including grey scale
77 btnWidth = (((screenBounds[0]*screenBounds[1])/508).sqrt * 1.6).floor.round;
79 // make the GUI (includes greys)
80 colorWindow.value(x.sort(sortFn), btnWidth, (btnWidth/8).round, Rect(0, 0, screenBounds[0], screenBounds[1]), true);
82 // Other layouts
83 //colorWindow.value(x.sort(sortFn)) // small, excludes greys, with scrollbar
84 //colorWindow.value(x.sort(sortFn), 56, 6, Rect(5, 40, 672, 628)) // excludes greys
85 //colorWindow.value(x.sort(sortFn), 200, 11, Rect(200, 200, 412, 400)) // bigger buttons, excludes greys
86 //colorWindow.value(x.sort(sortFn), 1000, 48, Rect(100, 100, 1012, 670)) // big buttons, excludes greys
90 // X Windows colors
91 // see http://en.wikipedia.org/wiki/X11_color_names
94 x = [
95         'alice blue' -> Color.new255(240, 248, 255),
96         'AliceBlue' -> Color.new255(240, 248, 255),
97         'antique white' -> Color.new255(250, 235, 215),
98         'AntiqueWhite' -> Color.new255(250, 235, 215),
99         'AntiqueWhite1' -> Color.new255(255, 239, 219),
100         'AntiqueWhite2' -> Color.new255(238, 223, 204),
101         'AntiqueWhite3' -> Color.new255(205, 192, 176),
102         'AntiqueWhite4' -> Color.new255(139, 131, 120),
103         'aquamarine' -> Color.new255(127, 255, 212),
104         'aquamarine1' -> Color.new255(127, 255, 212),
105         'aquamarine2' -> Color.new255(118, 238, 198),
106         'aquamarine3' -> Color.new255(102, 205, 170),
107         'aquamarine4' -> Color.new255(69, 139, 116),
108         'azure' -> Color.new255(240, 255, 255),
109         'azure1' -> Color.new255(240, 255, 255),
110         'azure2' -> Color.new255(224, 238, 238),
111         'azure3' -> Color.new255(193, 205, 205),
112         'azure4' -> Color.new255(131, 139, 139),
113         'beige' -> Color.new255(245, 245, 220),
114         'bisque' -> Color.new255(255, 228, 196),
115         'bisque1' -> Color.new255(255, 228, 196),
116         'bisque2' -> Color.new255(238, 213, 183),
117         'bisque3' -> Color.new255(205, 183, 158),
118         'bisque4' -> Color.new255(139, 125, 107),
119         'black' -> Color.new255(0, 0, 0),
120         'blanched almond' -> Color.new255(255, 235, 205),
121         'BlanchedAlmond' -> Color.new255(255, 235, 205),
122         'blue' -> Color.new255(0, 0, 255),
123         'blue violet' -> Color.new255(138, 43, 226),
124         'blue1' -> Color.new255(0, 0, 255),
125         'blue2' -> Color.new255(0, 0, 238),
126         'blue3' -> Color.new255(0, 0, 205),
127         'blue4' -> Color.new255(0, 0, 139),
128         'BlueViolet' -> Color.new255(138, 43, 226),
129         'brown' -> Color.new255(165, 42, 42),
130         'brown1' -> Color.new255(255, 64, 64),
131         'brown2' -> Color.new255(238, 59, 59),
132         'brown3' -> Color.new255(205, 51, 51),
133         'brown4' -> Color.new255(139, 35, 35),
134         'burlywood' -> Color.new255(222, 184, 135),
135         'burlywood1' -> Color.new255(255, 211, 155),
136         'burlywood2' -> Color.new255(238, 197, 145),
137         'burlywood3' -> Color.new255(205, 170, 125),
138         'burlywood4' -> Color.new255(139, 115, 85),
139         'cadet blue' -> Color.new255(95, 158, 160),
140         'CadetBlue' -> Color.new255(95, 158, 160),
141         'CadetBlue1' -> Color.new255(152, 245, 255),
142         'CadetBlue2' -> Color.new255(142, 229, 238),
143         'CadetBlue3' -> Color.new255(122, 197, 205),
144         'CadetBlue4' -> Color.new255(83, 134, 139),
145         'chartreuse' -> Color.new255(127, 255, 0),
146         'chartreuse1' -> Color.new255(127, 255, 0),
147         'chartreuse2' -> Color.new255(118, 238, 0),
148         'chartreuse3' -> Color.new255(102, 205, 0),
149         'chartreuse4' -> Color.new255(69, 139, 0),
150         'chocolate' -> Color.new255(210, 105, 30),
151         'chocolate1' -> Color.new255(255, 127, 36),
152         'chocolate2' -> Color.new255(238, 118, 33),
153         'chocolate3' -> Color.new255(205, 102, 29),
154         'chocolate4' -> Color.new255(139, 69, 19),
155         'coral' -> Color.new255(255, 127, 80),
156         'coral1' -> Color.new255(255, 114, 86),
157         'coral2' -> Color.new255(238, 106, 80),
158         'coral3' -> Color.new255(205, 91, 69),
159         'coral4' -> Color.new255(139, 62, 47),
160         'cornflower blue' -> Color.new255(100, 149, 237),
161         'CornflowerBlue' -> Color.new255(100, 149, 237),
162         'cornsilk' -> Color.new255(255, 248, 220),
163         'cornsilk1' -> Color.new255(255, 248, 220),
164         'cornsilk2' -> Color.new255(238, 232, 205),
165         'cornsilk3' -> Color.new255(205, 200, 177),
166         'cornsilk4' -> Color.new255(139, 136, 120),
167         'cyan' -> Color.new255(0, 255, 255),
168         'cyan1' -> Color.new255(0, 255, 255),
169         'cyan2' -> Color.new255(0, 238, 238),
170         'cyan3' -> Color.new255(0, 205, 205),
171         'cyan4' -> Color.new255(0, 139, 139),
172         'dark goldenrod' -> Color.new255(184, 134, 11),
173         'dark green' -> Color.new255(0, 100, 0),
174         'dark khaki' -> Color.new255(189, 183, 107),
175         'dark olive green' -> Color.new255(85, 107, 47),
176         'dark orange' -> Color.new255(255, 140, 0),
177         'dark orchid' -> Color.new255(153, 50, 204),
178         'dark salmon' -> Color.new255(233, 150, 122),
179         'dark sea green' -> Color.new255(143, 188, 143),
180         'dark slate blue' -> Color.new255(72, 61, 139),
181         'dark slate gray' -> Color.new255(47, 79, 79),
182         'dark slate grey' -> Color.new255(47, 79, 79),
183         'dark turquoise' -> Color.new255(0, 206, 209),
184         'dark violet' -> Color.new255(148, 0, 211),
185         'DarkGoldenrod' -> Color.new255(184, 134, 11),
186         'DarkGoldenrod1' -> Color.new255(255, 185, 15),
187         'DarkGoldenrod2' -> Color.new255(238, 173, 14),
188         'DarkGoldenrod3' -> Color.new255(205, 149, 12),
189         'DarkGoldenrod4' -> Color.new255(139, 101, 8),
190         'DarkGreen' -> Color.new255(0, 100, 0),
191         'DarkKhaki' -> Color.new255(189, 183, 107),
192         'DarkOliveGreen' -> Color.new255(85, 107, 47),
193         'DarkOliveGreen1' -> Color.new255(202, 255, 112),
194         'DarkOliveGreen2' -> Color.new255(188, 238, 104),
195         'DarkOliveGreen3' -> Color.new255(162, 205, 90),
196         'DarkOliveGreen4' -> Color.new255(110, 139, 61),
197         'DarkOrange' -> Color.new255(255, 140, 0),
198         'DarkOrange1' -> Color.new255(255, 127, 0),
199         'DarkOrange2' -> Color.new255(238, 118, 0),
200         'DarkOrange3' -> Color.new255(205, 102, 0),
201         'DarkOrange4' -> Color.new255(139, 69, 0),
202         'DarkOrchid' -> Color.new255(153, 50, 204),
203         'DarkOrchid1' -> Color.new255(191, 62, 255),
204         'DarkOrchid2' -> Color.new255(178, 58, 238),
205         'DarkOrchid3' -> Color.new255(154, 50, 205),
206         'DarkOrchid4' -> Color.new255(104, 34, 139),
207         'DarkSalmon' -> Color.new255(233, 150, 122),
208         'DarkSeaGreen' -> Color.new255(143, 188, 143),
209         'DarkSeaGreen1' -> Color.new255(193, 255, 193),
210         'DarkSeaGreen2' -> Color.new255(180, 238, 180),
211         'DarkSeaGreen3' -> Color.new255(155, 205, 155),
212         'DarkSeaGreen4' -> Color.new255(105, 139, 105),
213         'DarkSlateBlue' -> Color.new255(72, 61, 139),
214         'DarkSlateGray' -> Color.new255(47, 79, 79),
215         'DarkSlateGray1' -> Color.new255(151, 255, 255),
216         'DarkSlateGray2' -> Color.new255(141, 238, 238),
217         'DarkSlateGray3' -> Color.new255(121, 205, 205),
218         'DarkSlateGray4' -> Color.new255(82, 139, 139),
219         'DarkSlateGrey' -> Color.new255(47, 79, 79),
220         'DarkTurquoise' -> Color.new255(0, 206, 209),
221         'DarkViolet' -> Color.new255(148, 0, 211),
222         'deep pink' -> Color.new255(255, 20, 147),
223         'deep sky blue' -> Color.new255(0, 191, 255),
224         'DeepPink' -> Color.new255(255, 20, 147),
225         'DeepPink1' -> Color.new255(255, 20, 147),
226         'DeepPink2' -> Color.new255(238, 18, 137),
227         'DeepPink3' -> Color.new255(205, 16, 118),
228         'DeepPink4' -> Color.new255(139, 10, 80),
229         'DeepSkyBlue' -> Color.new255(0, 191, 255),
230         'DeepSkyBlue1' -> Color.new255(0, 191, 255),
231         'DeepSkyBlue2' -> Color.new255(0, 178, 238),
232         'DeepSkyBlue3' -> Color.new255(0, 154, 205),
233         'DeepSkyBlue4' -> Color.new255(0, 104, 139),
234         'dim gray' -> Color.new255(105, 105, 105),
235         'dim grey' -> Color.new255(105, 105, 105),
236         'DimGray' -> Color.new255(105, 105, 105),
237         'DimGrey' -> Color.new255(105, 105, 105),
238         'dodger blue' -> Color.new255(30, 144, 255),
239         'DodgerBlue' -> Color.new255(30, 144, 255),
240         'DodgerBlue1' -> Color.new255(30, 144, 255),
241         'DodgerBlue2' -> Color.new255(28, 134, 238),
242         'DodgerBlue3' -> Color.new255(24, 116, 205),
243         'DodgerBlue4' -> Color.new255(16, 78, 139),
244         'firebrick' -> Color.new255(178, 34, 34),
245         'firebrick1' -> Color.new255(255, 48, 48),
246         'firebrick2' -> Color.new255(238, 44, 44),
247         'firebrick3' -> Color.new255(205, 38, 38),
248         'firebrick4' -> Color.new255(139, 26, 26),
249         'floral white' -> Color.new255(255, 250, 240),
250         'FloralWhite' -> Color.new255(255, 250, 240),
251         'forest green' -> Color.new255(34, 139, 34),
252         'ForestGreen' -> Color.new255(34, 139, 34),
253         'gainsboro' -> Color.new255(220, 220, 220),
254         'ghost white' -> Color.new255(248, 248, 255),
255         'GhostWhite' -> Color.new255(248, 248, 255),
256         'gold' -> Color.new255(255, 215, 0),
257         'gold1' -> Color.new255(255, 215, 0),
258         'gold2' -> Color.new255(238, 201, 0),
259         'gold3' -> Color.new255(205, 173, 0),
260         'gold4' -> Color.new255(139, 117, 0),
261         'goldenrod' -> Color.new255(218, 165, 32),
262         'goldenrod1' -> Color.new255(255, 193, 37),
263         'goldenrod2' -> Color.new255(238, 180, 34),
264         'goldenrod3' -> Color.new255(205, 155, 29),
265         'goldenrod4' -> Color.new255(139, 105, 20),
266         'gray' -> Color.new255(190, 190, 190),
267         'gray0' -> Color.new255(0, 0, 0),
268         'gray1' -> Color.new255(3, 3, 3),
269         'gray10' -> Color.new255(26, 26, 26),
270         'gray100' -> Color.new255(255, 255, 255),
271         'gray11' -> Color.new255(28, 28, 28),
272         'gray12' -> Color.new255(31, 31, 31),
273         'gray13' -> Color.new255(33, 33, 33),
274         'gray14' -> Color.new255(36, 36, 36),
275         'gray15' -> Color.new255(38, 38, 38),
276         'gray16' -> Color.new255(41, 41, 41),
277         'gray17' -> Color.new255(43, 43, 43),
278         'gray18' -> Color.new255(46, 46, 46),
279         'gray19' -> Color.new255(48, 48, 48),
280         'gray2' -> Color.new255(5, 5, 5),
281         'gray20' -> Color.new255(51, 51, 51),
282         'gray21' -> Color.new255(54, 54, 54),
283         'gray22' -> Color.new255(56, 56, 56),
284         'gray23' -> Color.new255(59, 59, 59),
285         'gray24' -> Color.new255(61, 61, 61),
286         'gray25' -> Color.new255(64, 64, 64),
287         'gray26' -> Color.new255(66, 66, 66),
288         'gray27' -> Color.new255(69, 69, 69),
289         'gray28' -> Color.new255(71, 71, 71),
290         'gray29' -> Color.new255(74, 74, 74),
291         'gray3' -> Color.new255(8, 8, 8),
292         'gray30' -> Color.new255(77, 77, 77),
293         'gray31' -> Color.new255(79, 79, 79),
294         'gray32' -> Color.new255(82, 82, 82),
295         'gray33' -> Color.new255(84, 84, 84),
296         'gray34' -> Color.new255(87, 87, 87),
297         'gray35' -> Color.new255(89, 89, 89),
298         'gray36' -> Color.new255(92, 92, 92),
299         'gray37' -> Color.new255(94, 94, 94),
300         'gray38' -> Color.new255(97, 97, 97),
301         'gray39' -> Color.new255(99, 99, 99),
302         'gray4' -> Color.new255(10, 10, 10),
303         'gray40' -> Color.new255(102, 102, 102),
304         'gray41' -> Color.new255(105, 105, 105),
305         'gray42' -> Color.new255(107, 107, 107),
306         'gray43' -> Color.new255(110, 110, 110),
307         'gray44' -> Color.new255(112, 112, 112),
308         'gray45' -> Color.new255(115, 115, 115),
309         'gray46' -> Color.new255(117, 117, 117),
310         'gray47' -> Color.new255(120, 120, 120),
311         'gray48' -> Color.new255(122, 122, 122),
312         'gray49' -> Color.new255(125, 125, 125),
313         'gray5' -> Color.new255(13, 13, 13),
314         'gray50' -> Color.new255(127, 127, 127),
315         'gray51' -> Color.new255(130, 130, 130),
316         'gray52' -> Color.new255(133, 133, 133),
317         'gray53' -> Color.new255(135, 135, 135),
318         'gray54' -> Color.new255(138, 138, 138),
319         'gray55' -> Color.new255(140, 140, 140),
320         'gray56' -> Color.new255(143, 143, 143),
321         'gray57' -> Color.new255(145, 145, 145),
322         'gray58' -> Color.new255(148, 148, 148),
323         'gray59' -> Color.new255(150, 150, 150),
324         'gray6' -> Color.new255(15, 15, 15),
325         'gray60' -> Color.new255(153, 153, 153),
326         'gray61' -> Color.new255(156, 156, 156),
327         'gray62' -> Color.new255(158, 158, 158),
328         'gray63' -> Color.new255(161, 161, 161),
329         'gray64' -> Color.new255(163, 163, 163),
330         'gray65' -> Color.new255(166, 166, 166),
331         'gray66' -> Color.new255(168, 168, 168),
332         'gray67' -> Color.new255(171, 171, 171),
333         'gray68' -> Color.new255(173, 173, 173),
334         'gray69' -> Color.new255(176, 176, 176),
335         'gray7' -> Color.new255(18, 18, 18),
336         'gray70' -> Color.new255(179, 179, 179),
337         'gray71' -> Color.new255(181, 181, 181),
338         'gray72' -> Color.new255(184, 184, 184),
339         'gray73' -> Color.new255(186, 186, 186),
340         'gray74' -> Color.new255(189, 189, 189),
341         'gray75' -> Color.new255(191, 191, 191),
342         'gray76' -> Color.new255(194, 194, 194),
343         'gray77' -> Color.new255(196, 196, 196),
344         'gray78' -> Color.new255(199, 199, 199),
345         'gray79' -> Color.new255(201, 201, 201),
346         'gray8' -> Color.new255(20, 20, 20),
347         'gray80' -> Color.new255(204, 204, 204),
348         'gray81' -> Color.new255(207, 207, 207),
349         'gray82' -> Color.new255(209, 209, 209),
350         'gray83' -> Color.new255(212, 212, 212),
351         'gray84' -> Color.new255(214, 214, 214),
352         'gray85' -> Color.new255(217, 217, 217),
353         'gray86' -> Color.new255(219, 219, 219),
354         'gray87' -> Color.new255(222, 222, 222),
355         'gray88' -> Color.new255(224, 224, 224),
356         'gray89' -> Color.new255(227, 227, 227),
357         'gray9' -> Color.new255(23, 23, 23),
358         'gray90' -> Color.new255(229, 229, 229),
359         'gray91' -> Color.new255(232, 232, 232),
360         'gray92' -> Color.new255(235, 235, 235),
361         'gray93' -> Color.new255(237, 237, 237),
362         'gray94' -> Color.new255(240, 240, 240),
363         'gray95' -> Color.new255(242, 242, 242),
364         'gray96' -> Color.new255(245, 245, 245),
365         'gray97' -> Color.new255(247, 247, 247),
366         'gray98' -> Color.new255(250, 250, 250),
367         'gray99' -> Color.new255(252, 252, 252),
368         'green' -> Color.new255(0, 255, 0),
369         'green yellow' -> Color.new255(173, 255, 47),
370         'green1' -> Color.new255(0, 255, 0),
371         'green2' -> Color.new255(0, 238, 0),
372         'green3' -> Color.new255(0, 205, 0),
373         'green4' -> Color.new255(0, 139, 0),
374         'GreenYellow' -> Color.new255(173, 255, 47),
375         'grey' -> Color.new255(190, 190, 190),
376         'grey0' -> Color.new255(0, 0, 0),
377         'grey1' -> Color.new255(3, 3, 3),
378         'grey10' -> Color.new255(26, 26, 26),
379         'grey100' -> Color.new255(255, 255, 255),
380         'grey11' -> Color.new255(28, 28, 28),
381         'grey12' -> Color.new255(31, 31, 31),
382         'grey13' -> Color.new255(33, 33, 33),
383         'grey14' -> Color.new255(36, 36, 36),
384         'grey15' -> Color.new255(38, 38, 38),
385         'grey16' -> Color.new255(41, 41, 41),
386         'grey17' -> Color.new255(43, 43, 43),
387         'grey18' -> Color.new255(46, 46, 46),
388         'grey19' -> Color.new255(48, 48, 48),
389         'grey2' -> Color.new255(5, 5, 5),
390         'grey20' -> Color.new255(51, 51, 51),
391         'grey21' -> Color.new255(54, 54, 54),
392         'grey22' -> Color.new255(56, 56, 56),
393         'grey23' -> Color.new255(59, 59, 59),
394         'grey24' -> Color.new255(61, 61, 61),
395         'grey25' -> Color.new255(64, 64, 64),
396         'grey26' -> Color.new255(66, 66, 66),
397         'grey27' -> Color.new255(69, 69, 69),
398         'grey28' -> Color.new255(71, 71, 71),
399         'grey29' -> Color.new255(74, 74, 74),
400         'grey3' -> Color.new255(8, 8, 8),
401         'grey30' -> Color.new255(77, 77, 77),
402         'grey31' -> Color.new255(79, 79, 79),
403         'grey32' -> Color.new255(82, 82, 82),
404         'grey33' -> Color.new255(84, 84, 84),
405         'grey34' -> Color.new255(87, 87, 87),
406         'grey35' -> Color.new255(89, 89, 89),
407         'grey36' -> Color.new255(92, 92, 92),
408         'grey37' -> Color.new255(94, 94, 94),
409         'grey38' -> Color.new255(97, 97, 97),
410         'grey39' -> Color.new255(99, 99, 99),
411         'grey4' -> Color.new255(10, 10, 10),
412         'grey40' -> Color.new255(102, 102, 102),
413         'grey41' -> Color.new255(105, 105, 105),
414         'grey42' -> Color.new255(107, 107, 107),
415         'grey43' -> Color.new255(110, 110, 110),
416         'grey44' -> Color.new255(112, 112, 112),
417         'grey45' -> Color.new255(115, 115, 115),
418         'grey46' -> Color.new255(117, 117, 117),
419         'grey47' -> Color.new255(120, 120, 120),
420         'grey48' -> Color.new255(122, 122, 122),
421         'grey49' -> Color.new255(125, 125, 125),
422         'grey5' -> Color.new255(13, 13, 13),
423         'grey50' -> Color.new255(127, 127, 127),
424         'grey51' -> Color.new255(130, 130, 130),
425         'grey52' -> Color.new255(133, 133, 133),
426         'grey53' -> Color.new255(135, 135, 135),
427         'grey54' -> Color.new255(138, 138, 138),
428         'grey55' -> Color.new255(140, 140, 140),
429         'grey56' -> Color.new255(143, 143, 143),
430         'grey57' -> Color.new255(145, 145, 145),
431         'grey58' -> Color.new255(148, 148, 148),
432         'grey59' -> Color.new255(150, 150, 150),
433         'grey6' -> Color.new255(15, 15, 15),
434         'grey60' -> Color.new255(153, 153, 153),
435         'grey61' -> Color.new255(156, 156, 156),
436         'grey62' -> Color.new255(158, 158, 158),
437         'grey63' -> Color.new255(161, 161, 161),
438         'grey64' -> Color.new255(163, 163, 163),
439         'grey65' -> Color.new255(166, 166, 166),
440         'grey66' -> Color.new255(168, 168, 168),
441         'grey67' -> Color.new255(171, 171, 171),
442         'grey68' -> Color.new255(173, 173, 173),
443         'grey69' -> Color.new255(176, 176, 176),
444         'grey7' -> Color.new255(18, 18, 18),
445         'grey70' -> Color.new255(179, 179, 179),
446         'grey71' -> Color.new255(181, 181, 181),
447         'grey72' -> Color.new255(184, 184, 184),
448         'grey73' -> Color.new255(186, 186, 186),
449         'grey74' -> Color.new255(189, 189, 189),
450         'grey75' -> Color.new255(191, 191, 191),
451         'grey76' -> Color.new255(194, 194, 194),
452         'grey77' -> Color.new255(196, 196, 196),
453         'grey78' -> Color.new255(199, 199, 199),
454         'grey79' -> Color.new255(201, 201, 201),
455         'grey8' -> Color.new255(20, 20, 20),
456         'grey80' -> Color.new255(204, 204, 204),
457         'grey81' -> Color.new255(207, 207, 207),
458         'grey82' -> Color.new255(209, 209, 209),
459         'grey83' -> Color.new255(212, 212, 212),
460         'grey84' -> Color.new255(214, 214, 214),
461         'grey85' -> Color.new255(217, 217, 217),
462         'grey86' -> Color.new255(219, 219, 219),
463         'grey87' -> Color.new255(222, 222, 222),
464         'grey88' -> Color.new255(224, 224, 224),
465         'grey89' -> Color.new255(227, 227, 227),
466         'grey9' -> Color.new255(23, 23, 23),
467         'grey90' -> Color.new255(229, 229, 229),
468         'grey91' -> Color.new255(232, 232, 232),
469         'grey92' -> Color.new255(235, 235, 235),
470         'grey93' -> Color.new255(237, 237, 237),
471         'grey94' -> Color.new255(240, 240, 240),
472         'grey95' -> Color.new255(242, 242, 242),
473         'grey96' -> Color.new255(245, 245, 245),
474         'grey97' -> Color.new255(247, 247, 247),
475         'grey98' -> Color.new255(250, 250, 250),
476         'grey99' -> Color.new255(252, 252, 252),
477         'honeydew' -> Color.new255(240, 255, 240),
478         'honeydew1' -> Color.new255(240, 255, 240),
479         'honeydew2' -> Color.new255(224, 238, 224),
480         'honeydew3' -> Color.new255(193, 205, 193),
481         'honeydew4' -> Color.new255(131, 139, 131),
482         'hot pink' -> Color.new255(255, 105, 180),
483         'HotPink' -> Color.new255(255, 105, 180),
484         'HotPink1' -> Color.new255(255, 110, 180),
485         'HotPink2' -> Color.new255(238, 106, 167),
486         'HotPink3' -> Color.new255(205, 96, 144),
487         'HotPink4' -> Color.new255(139, 58, 98),
488         'indian red' -> Color.new255(205, 92, 92),
489         'IndianRed' -> Color.new255(205, 92, 92),
490         'IndianRed1' -> Color.new255(255, 106, 106),
491         'IndianRed2' -> Color.new255(238, 99, 99),
492         'IndianRed3' -> Color.new255(205, 85, 85),
493         'IndianRed4' -> Color.new255(139, 58, 58),
494         'ivory' -> Color.new255(255, 255, 240),
495         'ivory1' -> Color.new255(255, 255, 240),
496         'ivory2' -> Color.new255(238, 238, 224),
497         'ivory3' -> Color.new255(205, 205, 193),
498         'ivory4' -> Color.new255(139, 139, 131),
499         'khaki' -> Color.new255(240, 230, 140),
500         'khaki1' -> Color.new255(255, 246, 143),
501         'khaki2' -> Color.new255(238, 230, 133),
502         'khaki3' -> Color.new255(205, 198, 115),
503         'khaki4' -> Color.new255(139, 134, 78),
504         'lavender' -> Color.new255(230, 230, 250),
505         'lavender blush' -> Color.new255(255, 240, 245),
506         'LavenderBlush' -> Color.new255(255, 240, 245),
507         'LavenderBlush1' -> Color.new255(255, 240, 245),
508         'LavenderBlush2' -> Color.new255(238, 224, 229),
509         'LavenderBlush3' -> Color.new255(205, 193, 197),
510         'LavenderBlush4' -> Color.new255(139, 131, 134),
511         'lawn green' -> Color.new255(124, 252, 0),
512         'LawnGreen' -> Color.new255(124, 252, 0),
513         'lemon chiffon' -> Color.new255(255, 250, 205),
514         'LemonChiffon' -> Color.new255(255, 250, 205),
515         'LemonChiffon1' -> Color.new255(255, 250, 205),
516         'LemonChiffon2' -> Color.new255(238, 233, 191),
517         'LemonChiffon3' -> Color.new255(205, 201, 165),
518         'LemonChiffon4' -> Color.new255(139, 137, 112),
519         'light blue' -> Color.new255(173, 216, 230),
520         'light coral' -> Color.new255(240, 128, 128),
521         'light cyan' -> Color.new255(224, 255, 255),
522         'light goldenrod' -> Color.new255(238, 221, 130),
523         'light goldenrod yellow' -> Color.new255(250, 250, 210),
524         'light gray' -> Color.new255(211, 211, 211),
525         'light grey' -> Color.new255(211, 211, 211),
526         'light pink' -> Color.new255(255, 182, 193),
527         'light salmon' -> Color.new255(255, 160, 122),
528         'light sea green' -> Color.new255(32, 178, 170),
529         'light sky blue' -> Color.new255(135, 206, 250),
530         'light slate blue' -> Color.new255(132, 112, 255),
531         'light slate gray' -> Color.new255(119, 136, 153),
532         'light slate grey' -> Color.new255(119, 136, 153),
533         'light steel blue' -> Color.new255(176, 196, 222),
534         'light yellow' -> Color.new255(255, 255, 224),
535         'LightBlue' -> Color.new255(173, 216, 230),
536         'LightBlue1' -> Color.new255(191, 239, 255),
537         'LightBlue2' -> Color.new255(178, 223, 238),
538         'LightBlue3' -> Color.new255(154, 192, 205),
539         'LightBlue4' -> Color.new255(104, 131, 139),
540         'LightCoral' -> Color.new255(240, 128, 128),
541         'LightCyan' -> Color.new255(224, 255, 255),
542         'LightCyan1' -> Color.new255(224, 255, 255),
543         'LightCyan2' -> Color.new255(209, 238, 238),
544         'LightCyan3' -> Color.new255(180, 205, 205),
545         'LightCyan4' -> Color.new255(122, 139, 139),
546         'LightGoldenrod' -> Color.new255(238, 221, 130),
547         'LightGoldenrod1' -> Color.new255(255, 236, 139),
548         'LightGoldenrod2' -> Color.new255(238, 220, 130),
549         'LightGoldenrod3' -> Color.new255(205, 190, 112),
550         'LightGoldenrod4' -> Color.new255(139, 129, 76),
551         'LightGoldenrodYellow' -> Color.new255(250, 250, 210),
552         'LightGray' -> Color.new255(211, 211, 211),
553         'LightGrey' -> Color.new255(211, 211, 211),
554         'LightPink' -> Color.new255(255, 182, 193),
555         'LightPink1' -> Color.new255(255, 174, 185),
556         'LightPink2' -> Color.new255(238, 162, 173),
557         'LightPink3' -> Color.new255(205, 140, 149),
558         'LightPink4' -> Color.new255(139, 95, 101),
559         'LightSalmon' -> Color.new255(255, 160, 122),
560         'LightSalmon1' -> Color.new255(255, 160, 122),
561         'LightSalmon2' -> Color.new255(238, 149, 114),
562         'LightSalmon3' -> Color.new255(205, 129, 98),
563         'LightSalmon4' -> Color.new255(139, 87, 66),
564         'LightSeaGreen' -> Color.new255(32, 178, 170),
565         'LightSkyBlue' -> Color.new255(135, 206, 250),
566         'LightSkyBlue1' -> Color.new255(176, 226, 255),
567         'LightSkyBlue2' -> Color.new255(164, 211, 238),
568         'LightSkyBlue3' -> Color.new255(141, 182, 205),
569         'LightSkyBlue4' -> Color.new255(96, 123, 139),
570         'LightSlateBlue' -> Color.new255(132, 112, 255),
571         'LightSlateGray' -> Color.new255(119, 136, 153),
572         'LightSlateGrey' -> Color.new255(119, 136, 153),
573         'LightSteelBlue' -> Color.new255(176, 196, 222),
574         'LightSteelBlue1' -> Color.new255(202, 225, 255),
575         'LightSteelBlue2' -> Color.new255(188, 210, 238),
576         'LightSteelBlue3' -> Color.new255(162, 181, 205),
577         'LightSteelBlue4' -> Color.new255(110, 123, 139),
578         'LightYellow' -> Color.new255(255, 255, 224),
579         'LightYellow1' -> Color.new255(255, 255, 224),
580         'LightYellow2' -> Color.new255(238, 238, 209),
581         'LightYellow3' -> Color.new255(205, 205, 180),
582         'LightYellow4' -> Color.new255(139, 139, 122),
583         'lime green' -> Color.new255(50, 205, 50),
584         'LimeGreen' -> Color.new255(50, 205, 50),
585         'linen' -> Color.new255(250, 240, 230),
586         'magenta' -> Color.new255(255, 0, 255),
587         'magenta1' -> Color.new255(255, 0, 255),
588         'magenta2' -> Color.new255(238, 0, 238),
589         'magenta3' -> Color.new255(205, 0, 205),
590         'magenta4' -> Color.new255(139, 0, 139),
591         'maroon' -> Color.new255(176, 48, 96),
592         'maroon1' -> Color.new255(255, 52, 179),
593         'maroon2' -> Color.new255(238, 48, 167),
594         'maroon3' -> Color.new255(205, 41, 144),
595         'maroon4' -> Color.new255(139, 28, 98),
596         'medium aquamarine' -> Color.new255(102, 205, 170),
597         'medium blue' -> Color.new255(0, 0, 205),
598         'medium orchid' -> Color.new255(186, 85, 211),
599         'medium purple' -> Color.new255(147, 112, 219),
600         'medium sea green' -> Color.new255(60, 179, 113),
601         'medium slate blue' -> Color.new255(123, 104, 238),
602         'medium spring green' -> Color.new255(0, 250, 154),
603         'medium turquoise' -> Color.new255(72, 209, 204),
604         'medium violet red' -> Color.new255(199, 21, 133),
605         'MediumAquamarine' -> Color.new255(102, 205, 170),
606         'MediumBlue' -> Color.new255(0, 0, 205),
607         'MediumOrchid' -> Color.new255(186, 85, 211),
608         'MediumOrchid1' -> Color.new255(224, 102, 255),
609         'MediumOrchid2' -> Color.new255(209, 95, 238),
610         'MediumOrchid3' -> Color.new255(180, 82, 205),
611         'MediumOrchid4' -> Color.new255(122, 55, 139),
612         'MediumPurple' -> Color.new255(147, 112, 219),
613         'MediumPurple1' -> Color.new255(171, 130, 255),
614         'MediumPurple2' -> Color.new255(159, 121, 238),
615         'MediumPurple3' -> Color.new255(137, 104, 205),
616         'MediumPurple4' -> Color.new255(93, 71, 139),
617         'MediumSeaGreen' -> Color.new255(60, 179, 113),
618         'MediumSlateBlue' -> Color.new255(123, 104, 238),
619         'MediumSpringGreen' -> Color.new255(0, 250, 154),
620         'MediumTurquoise' -> Color.new255(72, 209, 204),
621         'MediumVioletRed' -> Color.new255(199, 21, 133),
622         'midnight blue' -> Color.new255(25, 25, 112),
623         'MidnightBlue' -> Color.new255(25, 25, 112),
624         'mint cream' -> Color.new255(245, 255, 250),
625         'MintCream' -> Color.new255(245, 255, 250),
626         'misty rose' -> Color.new255(255, 228, 225),
627         'MistyRose' -> Color.new255(255, 228, 225),
628         'MistyRose1' -> Color.new255(255, 228, 225),
629         'MistyRose2' -> Color.new255(238, 213, 210),
630         'MistyRose3' -> Color.new255(205, 183, 181),
631         'MistyRose4' -> Color.new255(139, 125, 123),
632         'moccasin' -> Color.new255(255, 228, 181),
633         'navajo white' -> Color.new255(255, 222, 173),
634         'NavajoWhite' -> Color.new255(255, 222, 173),
635         'NavajoWhite1' -> Color.new255(255, 222, 173),
636         'NavajoWhite2' -> Color.new255(238, 207, 161),
637         'NavajoWhite3' -> Color.new255(205, 179, 139),
638         'NavajoWhite4' -> Color.new255(139, 121, 94),
639         'navy' -> Color.new255(0, 0, 128),
640         'navy blue' -> Color.new255(0, 0, 128),
641         'NavyBlue' -> Color.new255(0, 0, 128),
642         'old lace' -> Color.new255(253, 245, 230),
643         'OldLace' -> Color.new255(253, 245, 230),
644         'olive drab' -> Color.new255(107, 142, 35),
645         'OliveDrab' -> Color.new255(107, 142, 35),
646         'OliveDrab1' -> Color.new255(192, 255, 62),
647         'OliveDrab2' -> Color.new255(179, 238, 58),
648         'OliveDrab3' -> Color.new255(154, 205, 50),
649         'OliveDrab4' -> Color.new255(105, 139, 34),
650         'orange' -> Color.new255(255, 165, 0),
651         'orange red' -> Color.new255(255, 69, 0),
652         'orange1' -> Color.new255(255, 165, 0),
653         'orange2' -> Color.new255(238, 154, 0),
654         'orange3' -> Color.new255(205, 133, 0),
655         'orange4' -> Color.new255(139, 90, 0),
656         'OrangeRed' -> Color.new255(255, 69, 0),
657         'OrangeRed1' -> Color.new255(255, 69, 0),
658         'OrangeRed2' -> Color.new255(238, 64, 0),
659         'OrangeRed3' -> Color.new255(205, 55, 0),
660         'OrangeRed4' -> Color.new255(139, 37, 0),
661         'orchid' -> Color.new255(218, 112, 214),
662         'orchid1' -> Color.new255(255, 131, 250),
663         'orchid2' -> Color.new255(238, 122, 233),
664         'orchid3' -> Color.new255(205, 105, 201),
665         'orchid4' -> Color.new255(139, 71, 137),
666         'pale goldenrod' -> Color.new255(238, 232, 170),
667         'pale green' -> Color.new255(152, 251, 152),
668         'pale turquoise' -> Color.new255(175, 238, 238),
669         'pale violet red' -> Color.new255(219, 112, 147),
670         'PaleGoldenrod' -> Color.new255(238, 232, 170),
671         'PaleGreen' -> Color.new255(152, 251, 152),
672         'PaleGreen1' -> Color.new255(154, 255, 154),
673         'PaleGreen2' -> Color.new255(144, 238, 144),
674         'PaleGreen3' -> Color.new255(124, 205, 124),
675         'PaleGreen4' -> Color.new255(84, 139, 84),
676         'PaleTurquoise' -> Color.new255(175, 238, 238),
677         'PaleTurquoise1' -> Color.new255(187, 255, 255),
678         'PaleTurquoise2' -> Color.new255(174, 238, 238),
679         'PaleTurquoise3' -> Color.new255(150, 205, 205),
680         'PaleTurquoise4' -> Color.new255(102, 139, 139),
681         'PaleVioletRed' -> Color.new255(219, 112, 147),
682         'PaleVioletRed1' -> Color.new255(255, 130, 171),
683         'PaleVioletRed2' -> Color.new255(238, 121, 159),
684         'PaleVioletRed3' -> Color.new255(205, 104, 137),
685         'PaleVioletRed4' -> Color.new255(139, 71, 93),
686         'papaya whip' -> Color.new255(255, 239, 213),
687         'PapayaWhip' -> Color.new255(255, 239, 213),
688         'peach puff' -> Color.new255(255, 218, 185),
689         'PeachPuff' -> Color.new255(255, 218, 185),
690         'PeachPuff1' -> Color.new255(255, 218, 185),
691         'PeachPuff2' -> Color.new255(238, 203, 173),
692         'PeachPuff3' -> Color.new255(205, 175, 149),
693         'PeachPuff4' -> Color.new255(139, 119, 101),
694         'peru' -> Color.new255(205, 133, 63),
695         'pink' -> Color.new255(255, 192, 203),
696         'pink1' -> Color.new255(255, 181, 197),
697         'pink2' -> Color.new255(238, 169, 184),
698         'pink3' -> Color.new255(205, 145, 158),
699         'pink4' -> Color.new255(139, 99, 108),
700         'plum' -> Color.new255(221, 160, 221),
701         'plum1' -> Color.new255(255, 187, 255),
702         'plum2' -> Color.new255(238, 174, 238),
703         'plum3' -> Color.new255(205, 150, 205),
704         'plum4' -> Color.new255(139, 102, 139),
705         'powder blue' -> Color.new255(176, 224, 230),
706         'PowderBlue' -> Color.new255(176, 224, 230),
707         'purple' -> Color.new255(160, 32, 240),
708         'purple1' -> Color.new255(155, 48, 255),
709         'purple2' -> Color.new255(145, 44, 238),
710         'purple3' -> Color.new255(125, 38, 205),
711         'purple4' -> Color.new255(85, 26, 139),
712         'red' -> Color.new255(255, 0, 0),
713         'red1' -> Color.new255(255, 0, 0),
714         'red2' -> Color.new255(238, 0, 0),
715         'red3' -> Color.new255(205, 0, 0),
716         'red4' -> Color.new255(139, 0, 0),
717         'rosy brown' -> Color.new255(188, 143, 143),
718         'RosyBrown' -> Color.new255(188, 143, 143),
719         'RosyBrown1' -> Color.new255(255, 193, 193),
720         'RosyBrown2' -> Color.new255(238, 180, 180),
721         'RosyBrown3' -> Color.new255(205, 155, 155),
722         'RosyBrown4' -> Color.new255(139, 105, 105),
723         'royal blue' -> Color.new255(65, 105, 225),
724         'RoyalBlue' -> Color.new255(65, 105, 225),
725         'RoyalBlue1' -> Color.new255(72, 118, 255),
726         'RoyalBlue2' -> Color.new255(67, 110, 238),
727         'RoyalBlue3' -> Color.new255(58, 95, 205),
728         'RoyalBlue4' -> Color.new255(39, 64, 139),
729         'saddle brown' -> Color.new255(139, 69, 19),
730         'SaddleBrown' -> Color.new255(139, 69, 19),
731         'salmon' -> Color.new255(250, 128, 114),
732         'salmon1' -> Color.new255(255, 140, 105),
733         'salmon2' -> Color.new255(238, 130, 98),
734         'salmon3' -> Color.new255(205, 112, 84),
735         'salmon4' -> Color.new255(139, 76, 57),
736         'sandy brown' -> Color.new255(244, 164, 96),
737         'SandyBrown' -> Color.new255(244, 164, 96),
738         'sea green' -> Color.new255(46, 139, 87),
739         'SeaGreen' -> Color.new255(46, 139, 87),
740         'SeaGreen1' -> Color.new255(84, 255, 159),
741         'SeaGreen2' -> Color.new255(78, 238, 148),
742         'SeaGreen3' -> Color.new255(67, 205, 128),
743         'SeaGreen4' -> Color.new255(46, 139, 87),
744         'seashell' -> Color.new255(255, 245, 238),
745         'seashell1' -> Color.new255(255, 245, 238),
746         'seashell2' -> Color.new255(238, 229, 222),
747         'seashell3' -> Color.new255(205, 197, 191),
748         'seashell4' -> Color.new255(139, 134, 130),
749         'sienna' -> Color.new255(160, 82, 45),
750         'sienna1' -> Color.new255(255, 130, 71),
751         'sienna2' -> Color.new255(238, 121, 66),
752         'sienna3' -> Color.new255(205, 104, 57),
753         'sienna4' -> Color.new255(139, 71, 38),
754         'sky blue' -> Color.new255(135, 206, 235),
755         'SkyBlue' -> Color.new255(135, 206, 235),
756         'SkyBlue1' -> Color.new255(135, 206, 255),
757         'SkyBlue2' -> Color.new255(126, 192, 238),
758         'SkyBlue3' -> Color.new255(108, 166, 205),
759         'SkyBlue4' -> Color.new255(74, 112, 139),
760         'slate blue' -> Color.new255(106, 90, 205),
761         'slate gray' -> Color.new255(112, 128, 144),
762         'slate grey' -> Color.new255(112, 128, 144),
763         'SlateBlue' -> Color.new255(106, 90, 205),
764         'SlateBlue1' -> Color.new255(131, 111, 255),
765         'SlateBlue2' -> Color.new255(122, 103, 238),
766         'SlateBlue3' -> Color.new255(105, 89, 205),
767         'SlateBlue4' -> Color.new255(71, 60, 139),
768         'SlateGray' -> Color.new255(112, 128, 144),
769         'SlateGray1' -> Color.new255(198, 226, 255),
770         'SlateGray2' -> Color.new255(185, 211, 238),
771         'SlateGray3' -> Color.new255(159, 182, 205),
772         'SlateGray4' -> Color.new255(108, 123, 139),
773         'SlateGrey' -> Color.new255(112, 128, 144),
774         'snow' -> Color.new255(255, 250, 250),
775         'snow1' -> Color.new255(255, 250, 250),
776         'snow2' -> Color.new255(238, 233, 233),
777         'snow3' -> Color.new255(205, 201, 201),
778         'snow4' -> Color.new255(139, 137, 137),
779         'spring green' -> Color.new255(0, 255, 127),
780         'SpringGreen' -> Color.new255(0, 255, 127),
781         'SpringGreen1' -> Color.new255(0, 255, 127),
782         'SpringGreen2' -> Color.new255(0, 238, 118),
783         'SpringGreen3' -> Color.new255(0, 205, 102),
784         'SpringGreen4' -> Color.new255(0, 139, 69),
785         'steel blue' -> Color.new255(70, 130, 180),
786         'SteelBlue' -> Color.new255(70, 130, 180),
787         'SteelBlue1' -> Color.new255(99, 184, 255),
788         'SteelBlue2' -> Color.new255(92, 172, 238),
789         'SteelBlue3' -> Color.new255(79, 148, 205),
790         'SteelBlue4' -> Color.new255(54, 100, 139),
791         'tan' -> Color.new255(210, 180, 140),
792         'tan1' -> Color.new255(255, 165, 79),
793         'tan2' -> Color.new255(238, 154, 73),
794         'tan3' -> Color.new255(205, 133, 63),
795         'tan4' -> Color.new255(139, 90, 43),
796         'thistle' -> Color.new255(216, 191, 216),
797         'thistle1' -> Color.new255(255, 225, 255),
798         'thistle2' -> Color.new255(238, 210, 238),
799         'thistle3' -> Color.new255(205, 181, 205),
800         'thistle4' -> Color.new255(139, 123, 139),
801         'tomato' -> Color.new255(255, 99, 71),
802         'tomato1' -> Color.new255(255, 99, 71),
803         'tomato2' -> Color.new255(238, 92, 66),
804         'tomato3' -> Color.new255(205, 79, 57),
805         'tomato4' -> Color.new255(139, 54, 38),
806         'turquoise' -> Color.new255(64, 224, 208),
807         'turquoise1' -> Color.new255(0, 245, 255),
808         'turquoise2' -> Color.new255(0, 229, 238),
809         'turquoise3' -> Color.new255(0, 197, 205),
810         'turquoise4' -> Color.new255(0, 134, 139),
811         'violet' -> Color.new255(238, 130, 238),
812         'violet red' -> Color.new255(208, 32, 144),
813         'VioletRed' -> Color.new255(208, 32, 144),
814         'VioletRed1' -> Color.new255(255, 62, 150),
815         'VioletRed2' -> Color.new255(238, 58, 140),
816         'VioletRed3' -> Color.new255(205, 50, 120),
817         'VioletRed4' -> Color.new255(139, 34, 82),
818         'wheat' -> Color.new255(245, 222, 179),
819         'wheat1' -> Color.new255(255, 231, 186),
820         'wheat2' -> Color.new255(238, 216, 174),
821         'wheat3' -> Color.new255(205, 186, 150),
822         'wheat4' -> Color.new255(139, 126, 102),
823         'white' -> Color.new255(255, 255, 255),
824         'white smoke' -> Color.new255(245, 245, 245),
825         'WhiteSmoke' -> Color.new255(245, 245, 245),
826         'yellow' -> Color.new255(255, 255, 0),
827         'yellow green' -> Color.new255(154, 205, 50),
828         'yellow1' -> Color.new255(255, 255, 0),
829         'yellow2' -> Color.new255(238, 238, 0),
830         'yellow3' -> Color.new255(205, 205, 0),
831         'yellow4' -> Color.new255(139, 139, 0),
832         'YellowGreen' -> Color.new255(154, 205, 50)